home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000283_news@columbia.edu _Wed Feb 19 10:43:14 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA26764
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 19 Feb 1997 10:43:14 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA07528
  7.     for kermit.misc@watsun; Wed, 19 Feb 1997 10:43:13 -0500 (EST)
  8. Path: news.columbia.edu!panix!news.mathworks.com!fu-berlin.de!cs.tu-berlin.de!uni-duisburg.de!sun3.hrz.uni-essen.de!sl0528
  9. From: sl0528@aixrs1.hrz.uni-essen.de (Thomas Pothmann)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: MS-Kermit via INT14h
  12. Date: Wed, 19 Feb 1997 14:06:54 +0100
  13. Organization: Essen University, Germany
  14. Lines: 72
  15. Message-ID: <urvCz8Q0+/Xa092yn@aixrs1.hrz.uni-essen.de>
  16. Reply-To: sl0528@aixrs1.hrz.uni-essen.de
  17. NNTP-Posting-Host: aixrs1.hrz.uni-essen.de
  18. Mime-Version: 1.0
  19. Content-Type: text/plain; charset=ISO-8859-1
  20. Content-Transfer-Encoding: 8bit
  21. Originator: sl0528@aixrs1.hrz.uni-essen.de
  22. Xref: news.columbia.edu comp.protocols.kermit.misc:6622
  23.  
  24. Hi,
  25.  
  26. I'm hardly trying to get MS-Kermit screwed up running as telnet client
  27. via INT14h - but it doesn't still work at all! :-(
  28.  
  29. I can't handle TCP/IP connection as it is described in msk315.doc for
  30. serveral reasons: 1. The terminal server, to which I connect to,
  31. strongly recommends a PAP login, so I can't dial in with Kermit
  32. because of missing Link Control Protocol. 2. At the moment I prefer
  33. using pppshare rather than etherppp, because the former seems to work
  34. more stable and reliable than the latter; pppshare is a Novell ODI
  35. driver for use over a PPP link and emulates a class 1 (ethernet)
  36. driver. 3. I generally like to use a class 1 driver, because most of
  37. my DOS clients call for one (and this way does WATTCP)
  38.  
  39. So why not get things working from the back? I'm trying exactly this
  40. with the help from *tcpport.exe*, which I found in the WATTCP tool
  41. kit. Please see note below:
  42.  
  43. ---
  44. Using MS-KERMIT with Waterloo TCP 
  45.  
  46. You may wish to  use a communication program such  as KERMIT
  47. rather than TELNET.  Waterloo TCP makes this very easy to do
  48. with its TCPPORT program.
  49.  
  50. Start by creating a configuration file which tells  your com
  51. program to use the BIOS ports rather than hardware.   For my
  52. version of KERMIT, the config file looks like:
  53.  
  54. C:\TNKERMIT\MSKERMIT.INI
  55. set baud 9600
  56. set port bios1
  57. [...] some cool stuff deleted
  58. ---
  59.  
  60. Now we can start a telnet session from a batch file *telnet.bat* like
  61. this one for example: tcpport %1 23 "c:\kermit"
  62.  
  63. So I've made a minimal mskermit.ini the following items within:
  64.  
  65. set term type vt320     ; Change this if desired.
  66. set port 2              ; Change if desired.  If COM3 or 4, read KERMIT.BWR.
  67. set speed 57600         ; Change if desired.
  68. set flow RTS/CTS        ; Change to RTS/CTS if modem is configured for this.
  69. set term bytesize 8     ; Change to 7/8 if desired.
  70. set term color 0 34 47  ; Terminal screen fore- and background colors.
  71.  
  72. define wattcp -
  73.   set port bios2, set speed 57600, set duplex full, -
  74.   set local-echo off, set flow none, -
  75.   set handshake none, set parity none
  76.  
  77. And here's my batch file:
  78. tcpport %1 23 "kermit do wattcp, connect, stay"
  79.  
  80. I really get a connect to my host with the configuration mentioned
  81. above but my terminal screen is full of garbage; when I terminate
  82. those failed telnet sessions, my PPP link is broken - when I ping the
  83. host, there are no responses anyway and I must hang up the modem. :-((
  84.  
  85. What's going wrong there? Who can help me?
  86.  
  87. Ciao, Thomas.
  88.  
  89. BTW: Does anybody know, where to get rather recent WATTCP
  90. binaries from? I didn't found any on WATTCP's home ftp server but only
  91. the sources; I found some exe.files on the ftp server of Cologne
  92. University, they are dated as of Sep 1994.
  93.  
  94. PS: Please don't mind my bad english ...
  95.